home *** CD-ROM | disk | FTP | other *** search
/ Super PC 34 / Super PC 34 (Shareware).iso / spc / UTIL / DJGPP2 / V2 / DJLSR200.ZIP / src / libc / ansi / stdlib / abs.txh < prev    next >
Encoding:
Text File  |  1995-07-10  |  274 b   |  21 lines

  1. @node abs, math
  2. @subheading Syntax
  3.  
  4. @example
  5. #include <stdlib.h>
  6.  
  7. int abs(int value);
  8. @end example
  9.  
  10. @subheading Return Value
  11.  
  12. The absolute value of @code{value} is returned.
  13.  
  14. @subheading Example
  15.  
  16. @example
  17. int sq = 7;
  18. sq = sq * abs(sq) + 1;
  19. @end example
  20.  
  21.